=============================
= New in G64OOSTestSim3.zip =
=============================

-----------------
RunSimulation.cpp
-----------------
fixed typo:
- cout<<"fleet->getEnergyProduction(): "<<fleet->getEnergyProduction()<<endl;

fixed memory leak:
 - Fleet* fleet=readFleet("0000000_fleet.dat");
 - Fleet* fleet1=readFleet("0000000_fleet.dat");
 - Fleet* fleet2=readFleet("1111111_fleet.dat");

added test for fleet creation
- void testFleetCreation(){...}


============================
= Lab Manual Clarification =
============================

--------------------
Table 3.4: Interface
--------------------
vector<Ship*> Fleet::colonyShips() const; ... Returns a vector with pointers to all ships in the fleet that are colony ships
vector<Ship*> Fleet::shipList() const; ... Returns a vector with pointers to all ships in the fleet
